Skip to main content

Create Project Import Endpoint

Overview

This endpoint allows users to create a new import resource within a project.

Request Details

HTTP Method

POST

Route

/api/users/[user_id]/projects/[project_id]/resources/imports

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
project_idintegerYesThe ID of the project

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Content-Typeapplication/jsonYesSpecifies the request format
Cookieneptun-sessionYesSession authentication cookie

Query Parameters

No query parameters required.

Request Body

FieldTypeRequiredDescription
source_typestringYesType of the import source (e.g., 'github')
source_pathstringYesPath or identifier for the import source
titlestringNoTitle of the import
descriptionstringNoDescription of the import
{
"source_type": "github",
"source_path": "username/repository",
"title": "My GitHub Import",
"description": "Importing from GitHub repository"
}

Response Format

Response Status Codes

Status CodeDescription
201Successfully created import
400Bad request (invalid parameters)
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404Project not found
500Server error

Success Response (201 Created)

{
"import": {
"id": 123,
"source_type": "github",
"source_path": "username/repository",
"title": "My GitHub Import",
"description": "Importing from GitHub repository",
"created_at": "2025-02-16T17:42:11.000Z",
"updated_at": "2025-02-16T17:42:11.000Z",
"neptun_user_id": 456,
"project_id": 789
}
}

Error Response (400 Bad Request)

{
"statusCode": 400,
"message": "Invalid request parameters"
}

TypeScript Interface

interface ProjectImport {
id: number
source_type: string
source_path: string
title?: string
description?: string
created_at: string
updated_at: string
neptun_user_id: number
project_id: number
}

interface CreateProjectImportRequest {
source_type: string
source_path: string
title?: string
description?: string
}

interface ApiResponse {
import: ProjectImport
}

Python Model

from datetime import datetime
from typing import Optional
from pydantic import BaseModel

class ProjectImport(BaseModel):
id: int
source_type: str
source_path: str
title: Optional[str]
description: Optional[str]
created_at: datetime
updated_at: datetime
neptun_user_id: int
project_id: int

class CreateProjectImportRequest(BaseModel):
source_type: str
source_path: str
title: Optional[str]
description: Optional[str]

class ApiResponse(BaseModel):
import_: ProjectImport = Field(alias='import')

Code Examples

cURL Example

curl -X POST "https://neptun-webui.vercel.app/api/users/1/projects/789/resources/imports" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: neptun-session=your-session-cookie" \
-d '{
"source_type": "github",
"source_path": "username/repository",
"title": "My GitHub Import",
"description": "Importing from GitHub repository"
}'

Python Example

import httpx
from typing import Optional

async def create_project_import(
user_id: int,
project_id: int,
source_type: str,
source_path: str,
title: Optional[str] = None,
description: Optional[str] = None,
session_cookie: str
) -> ApiResponse:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/projects/{project_id}/resources/imports"
data = {
"source_type": source_type,
"source_path": source_path
}
if title:
data["title"] = title
if description:
data["description"] = description

async with httpx.AsyncClient() as client:
response = await client.post(
url,
json=data,
headers={
"Accept": "application/json",
"Content-Type": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()
return ApiResponse(**response.json())

TypeScript/JavaScript Example

async function createProjectImport(
userId: number,
projectId: number,
data: CreateProjectImportRequest,
sessionCookie: string
): Promise<ApiResponse> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/projects/${projectId}/resources/imports`,
{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Cookie': `neptun-session=${sessionCookie}`,
},
body: JSON.stringify(data),
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return await response.json()
}

Notes

  • The session cookie is required for authentication
  • The project must belong to the specified user
  • The source_type must be a valid enum value
  • The source_path format depends on the source_type
  • The import will be automatically associated with the specified project
  • All IDs must be valid positive integers
  • For GitHub imports, appropriate GitHub installation permissions are required